matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 4 | |
André Rouél | dab28cb | 2013-02-20 08:37:36 +0100 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.sonatype.oss</groupId> |
| 7 | <artifactId>oss-parent</artifactId> |
| 8 | <version>7</version> |
| 9 | </parent> |
| 10 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 11 | <groupId>japa.javaparser</groupId> |
| 12 | <artifactId>javaparser</artifactId> |
| 13 | <packaging>jar</packaging> |
| 14 | <version>1.0.9-SNAPSHOT</version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 15 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 16 | <name>javaparser</name> |
| 17 | <url>http://code.google.com/p/javaparser/</url> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 18 | <inceptionYear>2007</inceptionYear> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 19 | <description>This package contains a Java 1.5 Parser with AST generation and visitor support. |
| 20 | The AST records the source code structure, javadoc and comments. Soon will be |
| 21 | possible change the AST nodes or create new ones to modify source code like refactoring. |
| 22 | This parser is based on Sreenivasa Viswanadha Java 1.5 parser.</description> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 23 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 24 | <issueManagement> |
| 25 | <system>Google Code</system> |
| 26 | <url>http://code.google.com/p/javaparser/issues/list</url> |
| 27 | </issueManagement> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 28 | |
| 29 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 30 | <developers> |
| 31 | <developer> |
| 32 | <name>Júlio Vilmar Gesser</name> |
| 33 | <email>jgesser@gmail.com</email> |
| 34 | </developer> |
| 35 | </developers> |
| 36 | <contributors> |
| 37 | <contributor> |
| 38 | <name>Hendy Irawan</name> |
| 39 | <email>hendy@soluvas.com</email> |
| 40 | <url>http://www.HendyIrawan.com/</url> |
| 41 | <organization>Soluvas</organization> |
| 42 | <organizationUrl>http://www.Soluvas.com/</organizationUrl> |
| 43 | </contributor> |
| 44 | </contributors> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 45 | |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 46 | <properties> |
| 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 48 | <java.version>1.6</java.version> |
| 49 | |
| 50 | <!-- Maven Plugins --> |
André Rouél | ffeecba | 2013-02-20 08:46:04 +0100 | [diff] [blame] | 51 | <build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 52 | <javacc-maven-plugin.version>2.6</javacc-maven-plugin.version> |
| 53 | <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 54 | |
| 55 | <!-- Test Dependencies --> |
| 56 | <junit.version>4.8.1</junit.version> |
| 57 | |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 58 | </properties> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 59 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 60 | <scm> |
André Rouél | 515c996 | 2013-02-20 08:33:17 +0100 | [diff] [blame] | 61 | <connection>scm:git:git://github.com/matozoid/javaparser.git</connection> |
| 62 | <developerConnection>scm:git:git@github.com:matozoid/javaparser.git</developerConnection> |
| 63 | <url>https://github.com/matozoid/javaparser.git</url> |
| 64 | <tag>HEAD</tag> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 65 | </scm> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 66 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 67 | <build> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 68 | <plugins> |
| 69 | <plugin> |
André Rouél | ffeecba | 2013-02-20 08:46:04 +0100 | [diff] [blame] | 70 | <groupId>org.codehaus.mojo</groupId> |
| 71 | <artifactId>build-helper-maven-plugin</artifactId> |
| 72 | <version>${build-helper-maven-plugin.version}</version> |
| 73 | <executions> |
| 74 | <execution> |
| 75 | <id>add-javacc-source</id> |
| 76 | <phase>generate-sources</phase> |
| 77 | <goals> |
| 78 | <goal>add-source</goal> |
| 79 | </goals> |
| 80 | <configuration> |
| 81 | <sources> |
| 82 | <source>src/main/javacc</source> |
| 83 | <source>target/generated-sources/javacc</source> |
| 84 | </sources> |
| 85 | </configuration> |
| 86 | </execution> |
| 87 | </executions> |
| 88 | </plugin> |
| 89 | <plugin> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 90 | <groupId>org.apache.maven.plugins</groupId> |
| 91 | <artifactId>maven-compiler-plugin</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 92 | <version>${maven-compiler-plugin.version}</version> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 93 | <configuration> |
| 94 | <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ --> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 95 | <source>${java.version}</source> |
| 96 | <target>${java.version}</target> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 97 | </configuration> |
| 98 | </plugin> |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 99 | <plugin> |
| 100 | <groupId>org.codehaus.mojo</groupId> |
| 101 | <artifactId>javacc-maven-plugin</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 102 | <version>${javacc-maven-plugin.version}</version> |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 103 | <executions> |
| 104 | <execution> |
| 105 | <id>javacc</id> |
| 106 | <goals> |
| 107 | <goal>javacc</goal> |
| 108 | </goals> |
André Rouél | d810d8e | 2013-02-20 19:11:16 +0100 | [diff] [blame^] | 109 | <configuration> |
| 110 | <grammarEncoding>${project.build.sourceEncoding}</grammarEncoding> |
| 111 | <jdkVersion>${java.version}</jdkVersion> |
| 112 | </configuration> |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 113 | </execution> |
| 114 | </executions> |
| 115 | </plugin> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 116 | </plugins> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 117 | <pluginManagement> |
| 118 | <plugins> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 119 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 120 | <plugin> |
| 121 | <groupId>org.eclipse.m2e</groupId> |
| 122 | <artifactId>lifecycle-mapping</artifactId> |
| 123 | <version>1.0.0</version> |
| 124 | <configuration> |
| 125 | <lifecycleMappingMetadata> |
| 126 | <pluginExecutions> |
| 127 | <pluginExecution> |
| 128 | <pluginExecutionFilter> |
| 129 | <groupId> |
| 130 | org.codehaus.mojo |
| 131 | </groupId> |
| 132 | <artifactId> |
| 133 | javacc-maven-plugin |
| 134 | </artifactId> |
| 135 | <versionRange> |
| 136 | [2.6,) |
| 137 | </versionRange> |
| 138 | <goals> |
| 139 | <goal>javacc</goal> |
| 140 | </goals> |
| 141 | </pluginExecutionFilter> |
| 142 | <action> |
| 143 | <ignore></ignore> |
| 144 | </action> |
| 145 | </pluginExecution> |
André Rouél | dab28cb | 2013-02-20 08:37:36 +0100 | [diff] [blame] | 146 | <pluginExecution> |
| 147 | <pluginExecutionFilter> |
| 148 | <groupId>org.apache.maven.plugins</groupId> |
| 149 | <artifactId>maven-enforcer-plugin</artifactId> |
| 150 | <versionRange>[1.0.0,)</versionRange> |
| 151 | <goals> |
| 152 | <goal>enforce</goal> |
| 153 | </goals> |
| 154 | </pluginExecutionFilter> |
| 155 | <action> |
| 156 | <ignore /> |
| 157 | </action> |
| 158 | </pluginExecution> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 159 | </pluginExecutions> |
| 160 | </lifecycleMappingMetadata> |
| 161 | </configuration> |
| 162 | </plugin> |
| 163 | </plugins> |
| 164 | </pluginManagement> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 165 | </build> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 166 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 167 | <dependencies> |
| 168 | <dependency> |
| 169 | <groupId>junit</groupId> |
| 170 | <artifactId>junit</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 171 | <version>${junit.version}</version> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 172 | <scope>test</scope> |
| 173 | </dependency> |
| 174 | </dependencies> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 175 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 176 | </project> |